home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue29 / survive / Builder.dpr < prev    next >
Encoding:
Text File  |  1997-11-08  |  222 b   |  15 lines

  1. program Builder;
  2.  
  3. uses
  4.   Forms,
  5.   Builder1 in 'Builder1.pas' {Form1},
  6.   Scanner in 'Scanner.pas';
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Initialize;
  12.   Application.CreateForm(TForm1, Form1);
  13.   Application.Run;
  14. end.
  15.